-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Casting from Binary --> Utf8 to evaluate LIKE
slows down some ClickBench queries
#12509
Comments
I have been thinking about this, and I came up with a third option which is to "push the casting into the scan" Consider this plan for q28:
The
Is what is causing a non trivial slowdown. The issue is that The problem is that BinaryView --> Utf8View conversion is much slower than reading Utf8View directly out of the parquet file due to the Utf8 optimization described by @XiangpengHao in "Section 2.1: From binary to strings" of the string view blog. Option 3: Implement push down casting (maybe as an Analyzer rule??)The theory here is that some readers( such as the parquet reader) can produce the data more effiicently in a particular format than creating it first in one format before datafusion casts it to another. So the plan above would basically push the cast down so the parquet reader read the |
BTW I think option 3 is the ideal solution (as it would be general purpose and likely benefit all plans, not just ClickBench) -- push the casting into the scan as the TableProvider may be able to create the desired datatype more efficiently than casting after the fact. Another idea that @tustvold and I talked about yesterday would be to improve the performance of casting BinaryView --> Utf8View, inspired by @XiangpengHao 's trick for the parquet reader:
|
Thank you for looking at this one @jayzhan211 |
BTW the more I think about this one, the more I think the "right" fix might just be to setup the query with the appropriate schema (aka tell DataFusion to treat the string columns as strings with |
Leaving it as binary messes up the results of the queres too For example, if you run this query SELECT "SearchEngineID", "SearchPhrase", COUNT(*) AS c FROM 'hits_partitioned' WHERE "SearchPhrase" <> '' GROUP BY "SearchEngineID", "SearchPhrase" ORDER BY c DESC LIMIT 10; You get this arguably nonsensical result: (venv) andrewlamb@Andrews-MacBook-Pro-2:~/Downloads$ datafusion-cli -f q.sql
DataFusion CLI v42.0.0
+----------------+--------------------------------------------------------------------------------------------------+-------+
| SearchEngineID | SearchPhrase | c |
+----------------+--------------------------------------------------------------------------------------------------+-------+
| 2 | d0bad0b0d180d0b5d0bbd0bad0b8 | 46258 |
| 2 | d0bcd0b0d0bdd0b3d18320d0b220d0b7d0b0d180d0b0d0b1d0b5d0b920d0b3d180d0b0d0bcd0b0 | 18871 |
| 2 | d181d0bcd0bed182d180d0b5d182d18c20d0bed0bdd0bbd0b0d0b9d0bd | 16905 |
| 3 | d0b0d0bbd0b1d0b0d182d180d183d182d0b4d0b8d0bd | 16748 |
| 2 | d181d0bcd0bed182d180d0b5d182d18c20d0bed0bdd0bbd0b0d0b9d0bd20d0b1d0b5d181d0bfd0bbd0b0d182d0bdd0be | 14909 |
| 2 | d0b0d0bbd0b1d0b0d182d180d183d182d0b4d0b8d0bd | 13716 |
| 2 | d18dd0bad0b7d0bed0b8d0b4d0bdd18bd0b5 | 13414 |
| 2 | d181d0bcd0bed182d180d0b5d182d18c | 13108 |
| 3 | d0bad0b0d180d0b5d0bbd0bad0b8 | 12815 |
| 2 | d0b4d180d183d0b6d0bad0b520d0bfd0bed0bcd0b5d189d0b5d0bdd0b8d0b5 | 11946 |
+----------------+--------------------------------------------------------------------------------------------------+-------+
10 row(s) fetched.
Elapsed 0.561 seconds.
(venv) andrewlamb@Andrews-MacBook-Pro-2:~/Downloads$ vs if you run the same query with the proper schema: (venv) andrewlamb@Andrews-MacBook-Pro-2:~/Downloads$ datafusion-cli -f q.sql
DataFusion CLI v42.0.0
+----------------+---------------------------+-------+
| SearchEngineID | SearchPhrase | c |
+----------------+---------------------------+-------+
| 2 | карелки | 46258 |
| 2 | мангу в зарабей грама | 18871 |
| 2 | смотреть онлайн | 16905 |
| 3 | албатрутдин | 16748 |
| 2 | смотреть онлайн бесплатно | 14909 |
| 2 | албатрутдин | 13716 |
| 2 | экзоидные | 13414 |
| 2 | смотреть | 13108 |
| 3 | карелки | 12815 |
| 2 | дружке помещение | 11946 |
+----------------+---------------------------+-------+
10 row(s) fetched.
Elapsed 0.569 seconds. I will file a proper ticket for this |
If you are looking to help StringView along @jayzhan211 I would recommend #12771 I think if we fix the schema of hte table for |
If we always check whether a binary is UTF-8 encoded before converting it to a string, will this add overhead for cases where the binary is not UTF-8 encoded? |
After changing the table schema from Binary to Utf8, the query becomes slower. |
I think there are two things going on:
So I think the core issue is that for
🤔 I don't understand that |
I'm not quite familiar with Parquet yet, do you mean you can modify the file schema to String? I thought we should keep the file schema as binary but change the mapped schema (table schema) to utf8/utf8view. Therefore, we need to validate the binary to know whether the array is utf8 or not. If it is utf8, we can convert it to string, if not we need to keep it as binary. In this case, we have an additional UTF8 validation check, although not sure if the overhead is negligible or not. I only tried modifying the table schema to utf8 without any utf8 validation, but the query is slower compared to The one only modify the table schema without any utf8 validation. The idea is to read the binary array column as utf8 directly.
The things I could try is
|
Hi @jayzhan211 -- sorry my confusion -- I have written up what I think we should do here: #12788 This is part of (but not all) of what we need to turn on StringView and have it go faster always. #11682 lists the other things |
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
While working on enabling
StringView
by default in #12092 I noticed that some of the clickbench queries got 10% slower and looked into it.The plan looks like this:
When looking at the flamegraphs, you can see the
CAST
spends a huge amount of time validating utf8 (more time than actually evaluating theLIKE
predicate actually):Here are the full flamegraphs for comparison:
q20-flamegraph-main
q20-flamegraph-stringview
I belive the issue is here:
This filter first *CAST
s the URL column to Utf8View and then evaluates
LIKE`Converting
BinaryArray
-->StringArray
as is done without StringView is relatively faster because it is done with a single large function callHowever, converting
BinaryViewArrar
-->StringViewArray
is not as it makes many small function calls. The parquet reader has a special optimization for this as descsribed in "Section 2.1: From binary to strings" of the Using StringView / German Style Strings to Make Queries Faster: Part 1 - Reading Parquet from @XiangpengHaoDescribe the solution you'd like
I would like this query to go as fast / faster with Utf8View / BinaryView enabled.
Bonus points if it went faster even without Utf-8 enabled
Describe alternatives you've considered
Option 1:
LIKE
for binaryOne option is to skip validating UTF8 entirely and evaluate
LIKE
directly on binary. This would mean if the column is read as binary we could cast the argument'%google%'
to binary and then evaluateLIKE
directly on the binary column. This would skip validaitng utf8 completelyUnfortunately, it appears that the
like
kernel is only implemented forStringArray
andStringViewArray
at the moment, not BinaryArray: https://docs.rs/arrow-string/53.0.0/src/arrow_string/like.rs.html#110-149Another related option would be to potentially special case the
LIKE
rewite in this case for just prefix / contians / suffix -- in this case rewrite<binary> LIKE <const that starts and ends with '%'
> --><binary> CONTAINS <string>
Option 2: resolve the column as
Utf8
rather thanBinary
For some reason the schema of
hits.parquet
(the single file from ClickBench) has theURL
column (and others) asUtf8
(strings) but thehits_partitioned
file resolves it as Binary. \We could change the schema resolution logicic to resolve the column as a String instead.
This option is probably slower than option 1 but I think it is more inline with what the intended semantics (these columns contain logical stirngs) and the parquet reader includes the fast read path for such strings and would be more general.
Filed #12510 to track this ideae
Additional context
The text was updated successfully, but these errors were encountered: