Skip to content
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

Adapt for json #18

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Adapt for json #18

wants to merge 2 commits into from

Conversation

w256
Copy link

@w256 w256 commented Feb 20, 2016

大変便利にありがたく使わせていただいております。
mysqlのフィールドにjsonを使っている場合でも、esに登録できるように改変しました。

以下は改変作業の具体的な内容となります。


mysqlのgeometoryフィールドに以下のようなjsonが入っており、それをesにロードしたい場合、うまくいかない事象がありました。

  • {"type": "Polygon", "coordinates": [[[136.8, 35.1], [136.8001, 35.1], [136.8001, 35.10001], [136.8, 35.100012], [136.8, 35.1]]]}

そこで、esに送信しているデータを確認しましたところ、本対応前は以下のようになっていました。

  • "geometry":"{"type": "Polygon", "coordinates": [[[136.8, 35.1], [136.8001, 35.1], [136.8001, 35.10001], [136.8, 35.100012], [136.8, 35.1]]]}"}

以下のように登録前に置換を行うように変更したところロードが成功するようになりました。

  1. 「\"」を 「"」に置換
  2. 「"{」を 「{」に置換
  3. 「"}」を 「}」に置換

@y-ken
Copy link
Owner

y-ken commented Sep 16, 2017

すみません、こちらは副作用が想定できるため対応が検討中のままでした。
JSON型と判定できる中身の場合に、エスケープしない処理をする手法が良さそうです。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants