Examples of ArchiveFileSystem


Examples of com.splunk.shuttl.archiver.filesystem.ArchiveFileSystem

   */
  public static BucketThawer createWithConfigAndSplunkSettingsAndLocalFileSystemPaths(
      ArchiveConfiguration configuration,
      SplunkIndexesLayer splunkIndexesLayer,
      LocalFileSystemPaths localFileSystemPaths) {
    ArchiveFileSystem archiveFileSystem = ArchiveFileSystemFactory
        .getWithConfiguration(configuration);
    return create(configuration, splunkIndexesLayer, localFileSystemPaths,
        archiveFileSystem);
  }
View Full Code Here

Examples of com.splunk.shuttl.archiver.filesystem.ArchiveFileSystem

    return createWithConfAndLocalPaths(config, LocalFileSystemPaths.create());
  }

  public static BucketArchiver createWithConfAndLocalPaths(
      ArchiveConfiguration config, LocalFileSystemPaths localFileSystemPaths) {
    ArchiveFileSystem archiveFileSystem = ArchiveFileSystemFactory
        .getWithConfiguration(config);
    return createWithConfFileSystemAndLocalPaths(config, archiveFileSystem,
        localFileSystemPaths);
  }
View Full Code Here

Examples of com.splunk.shuttl.archiver.filesystem.ArchiveFileSystem

  /**
   * @return instance configured with specified config.
   */
  public static BucketFormatResolver create(ArchiveConfiguration config) {
    ArchiveFileSystem archiveFileSystem = ArchiveFileSystemFactory
        .getWithConfiguration(config);
    PathResolver pathResolver = new PathResolver(config);
    BucketFormatChooser bucketFormatChooser = new BucketFormatChooser(config);
    return new BucketFormatResolver(pathResolver, archiveFileSystem,
        bucketFormatChooser);
View Full Code Here

Examples of com.splunk.shuttl.archiver.filesystem.ArchiveFileSystem

   */
  public static GlacierArchiveFileSystem create(
      LocalFileSystemPaths localFileSystemPaths) {
    AWSCredentialsImpl credentials = AWSCredentialsImpl.create();
    GlacierClient client = GlacierClient.create(credentials);
    ArchiveFileSystem s3 = S3ArchiveFileSystemFactory.createS3n();
    ArchiveConfiguration config = ArchiveConfiguration.getSharedInstance();
    return create(localFileSystemPaths, client, s3, config);
  }
View Full Code Here

Examples of com.splunk.shuttl.archiver.filesystem.ArchiveFileSystem

  /**
   * @return instance configured with the configuration.
   */
  public static ArchiveBucketsLister create(ArchiveConfiguration config) {
    ArchiveFileSystem archiveFileSystem = ArchiveFileSystemFactory
        .getWithConfiguration(config);
    PathResolver pathResolver = new PathResolver(config);

    ArchivedIndexesLister indexesLister = new ArchivedIndexesLister(
        pathResolver, archiveFileSystem);
View Full Code Here

Examples of com.splunk.shuttl.archiver.filesystem.ArchiveFileSystem

  @Path(ENDPOINT_LIST_INDEXES)
  public String listAllIndexes() throws JSONException {
    logger.info(happened("Received REST request to list indexes", "endpoint",
        ENDPOINT_LIST_INDEXES));

    ArchiveFileSystem archiveFileSystem = ArchiveFileSystemFactory
        .getConfiguredArchiveFileSystem();
    ArchiveConfiguration archiveConfiguration = ArchiveConfiguration
        .getSharedInstance();
    PathResolver pathResolver = new PathResolver(archiveConfiguration);
    ArchivedIndexesLister indexesLister = new ArchivedIndexesLister(
View Full Code Here

Examples of com.splunk.shuttl.archiver.filesystem.ArchiveFileSystem

    return bucketSizeResolver.resolveBucketSize(bucket);
  }

  private static BucketSizeResolver getBucketSizeResolver() {
    ArchiveConfiguration config = ArchiveConfiguration.getSharedInstance();
    ArchiveFileSystem archiveFileSystem = ArchiveFileSystemFactory
        .getWithConfiguration(config);
    LocalFileSystemPaths localFileSystemPaths = LocalFileSystemPaths.create();
    return new BucketSizeResolver(ArchiveBucketSize.create(new PathResolver(
        config), archiveFileSystem, localFileSystemPaths));
  }
View Full Code Here

Examples of com.splunk.shuttl.archiver.filesystem.ArchiveFileSystem

    bucketThawer = BucketThawerFactory
        .createWithConfigAndSplunkSettingsAndLocalFileSystemPaths(config,
            SplunkIndexesLayer, localFileSystemPaths);

    PathResolver pathResolver = new PathResolver(config);
    ArchiveFileSystem archiveFileSystem = ArchiveFileSystemFactory
        .getWithConfiguration(config);
    archiveBucketSize = ArchiveBucketSize.create(pathResolver,
        archiveFileSystem, localFileSystemPaths);
  }
View Full Code Here

Examples of com.splunk.shuttl.archiver.filesystem.ArchiveFileSystem

  public void setUp() {
    tgzConf = getLocalConfigurationThatArchivesFormats(asList(BucketFormat.SPLUNK_BUCKET_TGZ));
    testDirectory = createDirectory();
    localFileSystemPaths = new LocalFileSystemPaths(
        testDirectory.getAbsolutePath());
    ArchiveFileSystem localFileSystem = ArchiveFileSystemFactory
        .getWithConfiguration(tgzConf);

    bucketArchiver = BucketShuttlerFactory
        .createWithConfFileSystemAndLocalPaths(tgzConf, localFileSystem,
            localFileSystemPaths);
View Full Code Here

Examples of com.splunk.shuttl.archiver.filesystem.ArchiveFileSystem

  @BeforeMethod
  public void setUp() {
    archiverData = createDirectory();
    ArchiveConfiguration csvConfig = TUtilsFunctional
        .getLocalCsvArchiveConfigration();
    ArchiveFileSystem localFileSystem = ArchiveFileSystemFactory
        .getWithConfiguration(csvConfig);
    csvBucketArchiver = BucketShuttlerFactory
        .createWithConfFileSystemAndLocalPaths(csvConfig, localFileSystem,
            new LocalFileSystemPaths(archiverData.getAbsolutePath()));
    PathResolver pathResolver = new PathResolver(csvConfig);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.