hms-lambda-rnp/src/main/java/com/amazonaws/athena/HiveMetaStoreRnPBaseLambdaFunc.java [116:124]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  protected String spillToS3(Context context, String responseAsString)
  {
    // get the actual s3 path
    String s3Path = responseSpillLocation + "/" + context.getFunctionName() + "/" + context.getAwsRequestId();
    // log the s3 path in case invalid s3 path causes exceptions
    context.getLogger().log("Saving response to s3: " + s3Path);
    s3Helper.saveResponseToS3(s3Path, responseAsString);
    return s3Path;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



hms-lambda-handler/src/main/java/com/amazonaws/athena/hms/MetadataHandler.java [94:102]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private String spillToS3(Context context, String responseAsString)
  {
    // get the actual s3 path
    String s3Path = responseSpillLocation + "/" + context.getFunctionName() + "/" + context.getAwsRequestId();
    // log the s3 path in case invalid s3 path causes exceptions
    context.getLogger().log("Saving response to s3: " + s3Path);
    s3Helper.saveResponseToS3(s3Path, responseAsString);
    return s3Path;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



