Home > OS >  EMR Cluster Configuration Property regarding EMRFS Consistent View
EMR Cluster Configuration Property regarding EMRFS Consistent View

Time:12-10

I have an EMR Cluster. The cluster has a set of properties. One of the properties of the cluster includes fs.s3.consistent set as true. What does this signify?

CodePudding user response:

fs.s3.consistent is the main property that switches the EMRFS Consistent View feature on or off. (It's off by default.)

This entire feature is no longer necessary ever since the announcement that S3 now has strong read-after-write consistency.

  • Related