Skip to content

Instantly share code, notes, and snippets.

@de-sh
Last active August 30, 2020 17:17
Show Gist options
  • Select an option

  • Save de-sh/f0c22e7a3cd3eff9afa9b730de980c4b to your computer and use it in GitHub Desktop.

Select an option

Save de-sh/f0c22e7a3cd3eff9afa9b730de980c4b to your computer and use it in GitHub Desktop.
A report of work done during the tenth week of the Google Summer of Code 2020 program

August 2nd - 8th : Yi directed me to document the observable performance metrics of AWS S3 using the fio utility. I have converted the logs that were output by fio into the following gist:

Most of the rest of this week went into crafring a TiKV config file that can be used with S3, one must be able to make the convenient addition of the following configurations to their regular TiKV config to access the feature on a build that has cloud enabled for engine_rocksdb:

[rocksdb.s3]
enabled = true
src-cloud-bucket = "{aws_bucket_name}"
src-cloud-object = "{aws_object_name}"
src-cloud-region = "{aws_region_name}"
dest-cloud-bucket = "{aws_bucket_name}"
dest-cloud-object = "{aws_object_name}"
dest-cloud-region = "{aws_region_name}"

And then using the TiUP utility to setup and operate a TiKV cluster of one node and test the cloud integration.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment