hydra-python-agent
hydra-python-agent copied to clipboard
Client configuration
There should be a flawless way for configuring the client so the user, at deploy-time, can define:
- structure of the indexes
- ...
@Mec-iS can you please elaborate the issue
the developer should be allowed to configure how the local graph is indexed and other options. So for every entrypoint he/she should be able to define a data structure in which the configuration is stored. Every time the client instance is created, the code should read the data structure and set up the client in the way defined by the user (rebuild the indexes, etc). Example of a structure to configure a faceted index on a property:
{
"http://somedomain/vocab" : {
"graph": {
"indexing": {
"faceted": [
{
"resource": "<HydraClass>",
"property": "<property to index>"
}
]
}
}
}
}