Ben Chuanlong Du's Blog

It is never too late to learn.

Copy Object in Python

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

You can use the copy module to copy objects in Python. Customized coping behavior can be achived by overriding the methods __copy__ (for shallow copy) and __deepcopy__ (for deep copy).

References …

Return a New Object Or Mutate the Existing Object

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Generally speaking, prefer to return a new object rather than mutating the existing object. This is true in most programming languages besides C who seeks for best peformance.

The pandas package …

Spark vs Redshift

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement! Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

https://www.quora.com/Spark-vs-Redshift-Should-I-be-using-both-for-big-data-Which-is-better

Performance

https://dbseer.com/benchmark-comparison-spark-sql-redshift-cluster/

Redshift vs …