[go: up one dir, main page]
More Web Proxy on the site http://driver.im/

タグ

2016年6月12日のブックマーク (2件)

  • Streaming SQL with Apache Calcite

    With the rise of the Internet of Things (IoT) and low-latency analytics, streaming data becomes ever more important. Surprisingly, one of the most promising approaches for processing streaming data is SQL. In this presentation, Julian Hyde shows how to build streaming SQL analytics that deliver results with low latency, adapt to network changes, and play nicely with BI tools and stored data. He al

    Streaming SQL with Apache Calcite
    kimutansk
    kimutansk 2016/06/12
    実行計画構築用のFRWで、Drill等や、Flink等のストリーム部に実行計画を配分統合できると。メタな存在が出てくるあたり、それだけ成熟した分野ということでしょうか。
  • Javaのバイトコードで遊ぶ (Hello World) - jou4のブログ

    ASMを使ってJavaのバイトコードを生成して遊んでみます。 まずはその準備について。 Javaのバージョンは1.8.0_60、ASMのバージョンは5.0.3です。 生成したバイトコードを実行したり、クラスファイルに書き込みたいので そのためのユーティリティ(ExampleUtil)を準備します。 生成するクラスが持つmainメソッドを実行することにします。 private static class MyClassLoader extends ClassLoader { public Class<?> defineClass(String name, byte[] b) { return defineClass(name, b, 0, b.length); } } public static void execMain(String className, byte[] bytes) thr

    Javaのバイトコードで遊ぶ (Hello World) - jou4のブログ
    kimutansk
    kimutansk 2016/06/12
    ASM、確かにいろいろ遊べるんですけど、生で扱うには正直低レベルなAPI過ぎて使いにくいような・・・実際使うときは色々ラッパー必要ですか。