Search in sources :

Example 1 with HiveMetastoreBackedDeltaLakeMetastore

use of io.trino.plugin.deltalake.metastore.HiveMetastoreBackedDeltaLakeMetastore in project trino by trinodb.

the class DeltaLakeMetadataFactory method create.

public DeltaLakeMetadata create(ConnectorIdentity identity) {
    // create per-transaction cache over hive metastore interface
    CachingHiveMetastore cachingHiveMetastore = memoizeMetastore(hiveMetastoreFactory.createMetastore(Optional.of(identity)), perTransactionMetastoreCacheMaximumSize);
    HiveMetastoreBackedDeltaLakeMetastore deltaLakeMetastore = new HiveMetastoreBackedDeltaLakeMetastore(cachingHiveMetastore, transactionLogAccess, typeManager, statisticsAccess);
    return new DeltaLakeMetadata(deltaLakeMetastore, hdfsEnvironment, typeManager, domainCompactionThreshold, hideNonDeltaLakeTables, unsafeWritesEnabled, dataFileInfoCodec, deleteResultJsonCodec, transactionLogWriterFactory, nodeManager, checkpointWriterManager, checkpointWritingInterval, ignoreCheckpointWriteFailures, deleteSchemaLocationsFallback, statisticsAccess);
}
Also used : HiveMetastoreBackedDeltaLakeMetastore(io.trino.plugin.deltalake.metastore.HiveMetastoreBackedDeltaLakeMetastore) CachingHiveMetastore(io.trino.plugin.hive.metastore.cache.CachingHiveMetastore)

Example 2 with HiveMetastoreBackedDeltaLakeMetastore

use of io.trino.plugin.deltalake.metastore.HiveMetastoreBackedDeltaLakeMetastore in project trino by trinodb.

the class TestDeltaLakeMetadata method setUp.

@BeforeClass
public void setUp() throws IOException {
    temporaryCatalogDirectory = createTempDirectory("HiveCatalog").toFile();
    Map<String, String> config = ImmutableMap.<String, String>builder().put("hive.metastore", "file").put("hive.metastore.catalog.dir", temporaryCatalogDirectory.getPath()).buildOrThrow();
    Bootstrap app = new Bootstrap(// connector dependencies
    new JsonModule(), binder -> {
        ConnectorContext context = new TestingConnectorContext();
        binder.bind(NodeVersion.class).toInstance(new NodeVersion(context.getNodeManager().getCurrentNode().getVersion()));
        binder.bind(CatalogName.class).toInstance(new CatalogName("test"));
        binder.bind(TypeManager.class).toInstance(context.getTypeManager());
        binder.bind(NodeManager.class).toInstance(context.getNodeManager());
        binder.bind(PageIndexerFactory.class).toInstance(context.getPageIndexerFactory());
    }, // connector modules
    new DeltaLakeMetastoreModule(), new DeltaLakeModule(), // test setup
    binder -> {
        binder.bind(HdfsEnvironment.class).toInstance(HDFS_ENVIRONMENT);
    }, new AbstractModule() {

        @Provides
        public DeltaLakeMetastore getDeltaLakeMetastore(@RawHiveMetastoreFactory HiveMetastoreFactory hiveMetastoreFactory, TransactionLogAccess transactionLogAccess, TypeManager typeManager, CachingDeltaLakeStatisticsAccess statistics) {
            return new HiveMetastoreBackedDeltaLakeMetastore(hiveMetastoreFactory.createMetastore(Optional.empty()), transactionLogAccess, typeManager, statistics);
        }
    });
    Injector injector = app.doNotInitializeLogging().setRequiredConfigurationProperties(config).initialize();
    deltaLakeMetadataFactory = injector.getInstance(DeltaLakeMetadataFactory.class);
    injector.getInstance(DeltaLakeMetastore.class).createDatabase(Database.builder().setDatabaseName(DATABASE_NAME).setOwnerName(Optional.of("test")).setOwnerType(Optional.of(USER)).setLocation(Optional.empty()).build());
}
Also used : HiveMetastoreFactory(io.trino.plugin.hive.metastore.HiveMetastoreFactory) RawHiveMetastoreFactory(io.trino.plugin.hive.metastore.RawHiveMetastoreFactory) TransactionLogAccess(io.trino.plugin.deltalake.transactionlog.TransactionLogAccess) TestingConnectorContext(io.trino.testing.TestingConnectorContext) Provides(com.google.inject.Provides) DeltaLakeMetastore(io.trino.plugin.deltalake.metastore.DeltaLakeMetastore) HiveMetastoreBackedDeltaLakeMetastore(io.trino.plugin.deltalake.metastore.HiveMetastoreBackedDeltaLakeMetastore) JsonModule(io.airlift.json.JsonModule) PageIndexerFactory(io.trino.spi.PageIndexerFactory) HdfsEnvironment(io.trino.plugin.hive.HdfsEnvironment) AbstractModule(com.google.inject.AbstractModule) NodeVersion(io.trino.plugin.hive.NodeVersion) NodeManager(io.trino.spi.NodeManager) HiveMetastoreBackedDeltaLakeMetastore(io.trino.plugin.deltalake.metastore.HiveMetastoreBackedDeltaLakeMetastore) Injector(com.google.inject.Injector) ConnectorContext(io.trino.spi.connector.ConnectorContext) TestingConnectorContext(io.trino.testing.TestingConnectorContext) DeltaLakeMetastoreModule(io.trino.plugin.deltalake.metastore.DeltaLakeMetastoreModule) Bootstrap(io.airlift.bootstrap.Bootstrap) TypeManager(io.trino.spi.type.TypeManager) CatalogName(io.trino.plugin.base.CatalogName) CachingDeltaLakeStatisticsAccess(io.trino.plugin.deltalake.statistics.CachingDeltaLakeStatisticsAccess) BeforeClass(org.testng.annotations.BeforeClass)

Aggregations

HiveMetastoreBackedDeltaLakeMetastore (io.trino.plugin.deltalake.metastore.HiveMetastoreBackedDeltaLakeMetastore)2 AbstractModule (com.google.inject.AbstractModule)1 Injector (com.google.inject.Injector)1 Provides (com.google.inject.Provides)1 Bootstrap (io.airlift.bootstrap.Bootstrap)1 JsonModule (io.airlift.json.JsonModule)1 CatalogName (io.trino.plugin.base.CatalogName)1 DeltaLakeMetastore (io.trino.plugin.deltalake.metastore.DeltaLakeMetastore)1 DeltaLakeMetastoreModule (io.trino.plugin.deltalake.metastore.DeltaLakeMetastoreModule)1 CachingDeltaLakeStatisticsAccess (io.trino.plugin.deltalake.statistics.CachingDeltaLakeStatisticsAccess)1 TransactionLogAccess (io.trino.plugin.deltalake.transactionlog.TransactionLogAccess)1 HdfsEnvironment (io.trino.plugin.hive.HdfsEnvironment)1 NodeVersion (io.trino.plugin.hive.NodeVersion)1 HiveMetastoreFactory (io.trino.plugin.hive.metastore.HiveMetastoreFactory)1 RawHiveMetastoreFactory (io.trino.plugin.hive.metastore.RawHiveMetastoreFactory)1 CachingHiveMetastore (io.trino.plugin.hive.metastore.cache.CachingHiveMetastore)1 NodeManager (io.trino.spi.NodeManager)1 PageIndexerFactory (io.trino.spi.PageIndexerFactory)1 ConnectorContext (io.trino.spi.connector.ConnectorContext)1 TypeManager (io.trino.spi.type.TypeManager)1