stereoF

Results 12 comments of stereoF

Have u resolved this problem??

I tried "https instead of git" but nothing changed

Okay, using shadowsocks and proxychains, this problem has been resolved

@gforsyth ``` df_user = ibis.memtable({"user_id": [1, 2, 3, 4], "account_id": ['1', '2', '3', '4']}) df_portrait = ibis.memtable({"user_id": [1, 2, 3, 4], "account_id": ['1', '2', '3', '4']}) df_user_shift_7d = ibis.memtable({"user_id_shift_7d": [1,...

@gforsyth Not only mutate, group or other functions are also raise this kind of error after chain join

@gforsyth Hi, Is there a temporary solution before the fixing?

> Hi @stereoF -- it's not clear to me that there's a bug here, except that maybe we should be raising an error message? > > This line: > >...

> 生成wasm文件就可以了,wasmer加载wasm文件,用aot模式,不过沙箱环境需要处理一下IO,IO在沙箱环境里面是不生效的,会出现在import里面,import中wasi_snapshot_preview1这种类型就是系统限定(如果不是你自己指定),这种需要在宿主语言里面实现,我正好需要解决这个问题,如果自己实现则没问题,不过按理说wasi解析库应该是自带的,wasmer库里面我用的时候这几个还要自己实现。也在问这个问题,如果你不使用原生语言(比如C语言)的IO或者其他沙箱限定的API,就不会有这个问题,如果原生语言用的都是导出给C的API,原生语言就不会发生创建wasm实例失败。 @hanbim520 Hi,谢谢您的回复建议。想确认下是指iOS下headless模式也可以直接加载wasm文件并执行吗?

@hanbim520 因为iOS的政策是不能在手机上有编译动作,所以官方的编译脚本对iOS只提供了headless的方式,headless是指把load完wasm文件后的module序列化为wasmu格式,端上直接load,不用再编译,但这个就和CPU架构有关了。

@hanbim520 我在手机上能成功load wasm文件的只有安卓64位,安卓32位会有溢出问题,不知道你那边有没有遇到同样的问题?