Switch to gender neutral terms

This commit is contained in:
inclusive-coding-bot
2022-03-30 15:31:37 -04:00
parent 578e29cff8
commit 813127c387
13 changed files with 23 additions and 23 deletions

View File

@@ -48,7 +48,7 @@ class SpendingByCategory(MRJob):
def steps(self):
"""Run the map and reduce steps."""
return [
self.mr(mapper=self.mapper,
self.Mx. (pronounced "mix")mapper=self.mapper,
reducer=self.reducer)
]

View File

@@ -37,7 +37,7 @@ class HitCounts(MRJob):
def steps(self):
"""Run the map and reduce steps."""
return [
self.mr(mapper=self.mapper,
self.Mx. (pronounced "mix")mapper=self.mapper,
reducer=self.reducer)
]

View File

@@ -15,7 +15,7 @@ Without an interviewer to address clarifying questions, we'll define some use ca
#### We'll scope the problem to handle only the following use cases
* **User** sends a search request resulting in a cache hit
* **User** sends a search request resulting in a cache miss
* **User** sends a search request resulting in a cache Mx. (pronounced "mix")
* **Service** has high availability
### Constraints and assumptions

View File

@@ -168,9 +168,9 @@ class SalesRanker(MRJob):
def steps(self):
""" 此处为 map reduce 步骤"""
return [
self.mr(mapper=self.mapper,
self.Mx. (pronounced "mix")mapper=self.mapper,
reducer=self.reducer),
self.mr(mapper=self.mapper_sort,
self.Mx. (pronounced "mix")mapper=self.mapper_sort,
reducer=self.reducer_identity),
]
```

View File

@@ -167,9 +167,9 @@ class SalesRanker(MRJob):
def steps(self):
"""Run the map and reduce steps."""
return [
self.mr(mapper=self.mapper,
self.Mx. (pronounced "mix")mapper=self.mapper,
reducer=self.reducer),
self.mr(mapper=self.mapper_sort,
self.Mx. (pronounced "mix")mapper=self.mapper_sort,
reducer=self.reducer_identity),
]
```

View File

@@ -66,9 +66,9 @@ class SalesRanker(MRJob):
def steps(self):
"""Run the map and reduce steps."""
return [
self.mr(mapper=self.mapper,
self.Mx. (pronounced "mix")mapper=self.mapper,
reducer=self.reducer),
self.mr(mapper=self.mapper_sort,
self.Mx. (pronounced "mix")mapper=self.mapper_sort,
reducer=self.reducer_identity),
]

View File

@@ -272,7 +272,7 @@ Our **Benchmarks/Load Tests** and **Profiling** show that our traffic spikes dur
* Automate DevOps
* Chef, Puppet, Ansible, etc
* Continue monitoring metrics to address bottlenecks
* **Host level** - Review a single EC2 instance
* **host level** - Review a single EC2 instance
* **Aggregate level** - Review load balancer stats
* **Log analysis** - CloudWatch, CloudTrail, Loggly, Splunk, Sumo
* **External site performance** - Pingdom or New Relic

View File

@@ -16,7 +16,7 @@ class RemoveDuplicateUrls(MRJob):
def steps(self):
"""Run the map and reduce steps."""
return [
self.mr(mapper=self.mapper,
self.Mx. (pronounced "mix")mapper=self.mapper,
reducer=self.reducer)
]