예제 #1
0
 def __init__(self,
              storage_driver,
              table_info_repo,
              concurrent_tasks=1000,
              batch_chunk_size=25,
              schema_operation_timeout=300):
     SimpleStorageManager.__init__(self, storage_driver, table_info_repo,
                                   concurrent_tasks, batch_chunk_size,
                                   schema_operation_timeout)
예제 #2
0
    def __init__(self, storage_driver, table_info_repo,
                 concurrent_tasks=1000, batch_chunk_size=25,
                 schema_operation_timeout=300):
        SimpleStorageManager.__init__(
            self, storage_driver, table_info_repo,
            concurrent_tasks, batch_chunk_size,
            schema_operation_timeout)

        transport = messaging.get_transport(CONF)
        target = messaging.Target(topic='schema')

        self._rpc_client = messaging.RPCClient(transport, target)
예제 #3
0
    def __init__(self,
                 storage_driver,
                 table_info_repo,
                 concurrent_tasks=1000,
                 batch_chunk_size=25,
                 schema_operation_timeout=300):
        SimpleStorageManager.__init__(self, storage_driver, table_info_repo,
                                      concurrent_tasks, batch_chunk_size,
                                      schema_operation_timeout)

        transport = messaging.get_transport(CONF)
        target = messaging.Target(topic='schema')

        self._rpc_client = messaging.RPCClient(transport, target)
예제 #4
0
 def __init__(self, storage_driver, table_info_repo,
              concurrent_tasks=1000, batch_chunk_size=25,
              schema_operation_timeout=300):
     SimpleStorageManager.__init__(self, storage_driver, table_info_repo,
                                   concurrent_tasks, batch_chunk_size,
                                   schema_operation_timeout)