Skip to content

Commit 6b0e9da

Browse files
authored
📚 Fix typo in the cdk documentation (#7784)
1 parent 21d6dd9 commit 6b0e9da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/connector-development/cdk-python/schemas.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ In this case custom transformation will be applied after default type transforma
113113

114114
### Performance consideration
115115

116-
Transofrming each object on the fly would add some time for each object processing. This time is depends on object/schema complexitiy and hardware configuration.
116+
Transforming each object on the fly would add some time for each object processing. This time is depends on object/schema complexitiy and hardware configuration.
117117

118-
There is some performance benchmark we've done with ads\_insights facebook schema \(it is complex schema with objects nested inside arrays ob object and a lot of references\) and example object. Here is average transform time per single object, seconds:
118+
There are some performance benchmarks we've done with ads\_insights facebook schema \(it is complex schema with objects nested inside arrays ob object and a lot of references\) and example object. Here is the average transform time per single object, seconds:
119119

120120
```text
121121
regular transform:
@@ -131,5 +131,5 @@ just traverse/validate through json schema and object fields:
131131
0.0006139181846665452
132132
```
133133

134-
On my PC \(AMD Ryzen 7 5800X\) it took 0.8 milliseconds per one object. As you can see most time \(~ 75%\) is taken by jsonschema traverse/validation routine and very little \(less than 10 %\) by actual converting. Processing time can be reduced by skipping jsonschema type checking but it would be no warnings about possible object jsonschema inconsistency.
134+
On my PC \(AMD Ryzen 7 5800X\) it took 0.8 milliseconds per object. As you can see most time \(~ 75%\) is taken by jsonschema traverse/validation routine and very little \(less than 10 %\) by actual converting. Processing time can be reduced by skipping jsonschema type checking but it would be no warnings about possible object jsonschema inconsistency.
135135

0 commit comments

Comments
 (0)